home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / dev / if_obie.h < prev    next >
C/C++ Source or Header  |  1990-12-19  |  716b  |  24 lines

  1.  
  2. /*    @(#)if_obie.h 1.1 86/09/27 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  * Register definitions for the Sun-2 On-board version of the
  10.  * Intel EDLC based Ethernet interface.
  11.  * FYI:    Reset: write zeros to register
  12.  *    Must poll to check for obie_buserr
  13.  */
  14. struct obie_device {
  15.     u_char    obie_noreset    : 1;    /* R/W: Ethernet chips reset */
  16.     u_char    obie_noloop    : 1;    /* R/W: loopback */
  17.     u_char    obie_ca        : 1;    /* R/W: channel attention */
  18.     u_char    obie_ie        : 1;    /* R/W: interrupt enable */
  19.     u_char            : 1;    /* R/O: unused */
  20.     u_char    obie_level2    : 1;    /* R/O: 0=Level 1 xcvr, 1=Level 2 */
  21.     u_char    obie_buserr    : 1;    /* R/O: Ether DMA got bus error */
  22.     u_char    obie_intr    : 1;    /* R/O: interrupt request */
  23. };
  24.